ProcessInfo

data class ProcessInfo(type: String, id: Int, cpuTime: Double)

Represents process info.

Constructors

ProcessInfo
Link copied to clipboard
fun ProcessInfo(type: String, id: Int, cpuTime: Double)

Properties

cpuTime
Link copied to clipboard
val cpuTime: Double
Specifies cumulative CPU usage in seconds across all threads of the process since the process start.
id
Link copied to clipboard
val id: Int
Specifies process id.
type
Link copied to clipboard
val type: String
Specifies process type.

Sources

jvm source
Link copied to clipboard